const runtime.logMaxPackedValue
11 uses
runtime (current package)
mpagealloc.go#L306: if levelLogPages[0] > logMaxPackedValue {
mpagealloc.go#L980: maxPackedValue = 1 << logMaxPackedValue
mpagealloc.go#L981: logMaxPackedValue = logPallocChunkPages + (summaryLevels-1)*summaryLevelBits
mpagealloc.go#L984: uint64(pallocChunkPages<<logMaxPackedValue) |
mpagealloc.go#L985: uint64(pallocChunkPages<<(2*logMaxPackedValue)))
mpagealloc.go#L1001: ((uint64(max) & (maxPackedValue - 1)) << logMaxPackedValue) |
mpagealloc.go#L1002: ((uint64(end) & (maxPackedValue - 1)) << (2 * logMaxPackedValue)))
mpagealloc.go#L1018: return uint((uint64(p) >> logMaxPackedValue) & (maxPackedValue - 1))
mpagealloc.go#L1026: return uint((uint64(p) >> (2 * logMaxPackedValue)) & (maxPackedValue - 1))
mpagealloc.go#L1035: uint((uint64(p) >> logMaxPackedValue) & (maxPackedValue - 1)),
mpagealloc.go#L1036: uint((uint64(p) >> (2 * logMaxPackedValue)) & (maxPackedValue - 1))
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |